home *** CD-ROM | disk | FTP | other *** search
/ Experimental BBS Explossion 3 / Experimental BBS Explossion III.iso / c / bc_pas_1.zip / MAIN < prev    next >
Text File  |  1992-06-15  |  528b  |  18 lines

  1. #
  2. # Build file for creating the PCM demo program
  3. #
  4. AS = /Mx              ### make file ASSEMBLER permenant switches
  5. CS = /c /Ox /Zp1 /AL /F 1000  ### make file COMPILER permenant switches
  6. LS =                  ### make file LINKER permentant switches
  7. AO =                  ### make file ASSEMBLER command line switches
  8. CO =                  ### make file COMPILER command line switches
  9. LO =                  ### make file LINKER command line switches
  10.  
  11. main.obj: main.c
  12.     cl $(CO) $(CS) main.c
  13.  
  14. main.exe: main.obj
  15.     link $(LO) $(LS) main,,,mvllib;
  16.  
  17.  
  18.